home *** CD-ROM | disk | FTP | other *** search
/ Millennium Gold 2000 / Millennium Gold 2000 - Disc 1.iso / GNUCHESS / CHESS-16.MAK < prev    next >
Makefile  |  1995-07-27  |  7KB  |  237 lines

  1. #
  2. #  C source for GNU CHESS
  3. #
  4. #  Revision: 1990-12-26
  5. #
  6. #  Modified by Daryl Baker for use in MS WINDOWS environment
  7. #
  8. #  This file is part of CHESS.
  9. #
  10. #  CHESS is distributed in the hope that it will be useful, but WITHOUT ANY
  11. #  WARRANTY.  No author or distributor accepts responsibility to anyone for
  12. #  the consequences of using it or for whether it serves any particular
  13. #  purpose or works at all, unless he says so in writing.  Refer to the CHESS
  14. #  General Public License for full details.
  15. #
  16. #  Everyone is granted permission to copy, modify and redistribute CHESS, but
  17. #  only under the conditions described in the CHESS General Public License.
  18. #  A copy of this license is supposed to have been given to you along with
  19. #  CHESS so you can know your rights and responsibilities.  It should be in a
  20. #  file named COPYING.  Among other things, the copyright notice and this
  21. #  notice must be preserved on all copies.
  22. #
  23. #
  24. !include <ntwin32.mak>
  25. PROJ = chess
  26. PROJFILE = chess.mak
  27. VER = 321
  28.  
  29. CC  = cl
  30. CFLAGS  = /AS /W4 /Ox /G2 /Zp /nologo
  31. #CFLAGS  = /AM /W4 /G2s /Zp /nologo /Osge
  32.  
  33. LRF  = echo > NUL
  34. LINKER  = link
  35. LFLAGS  =   /BATCH /nologo /align:16 /map /NOF /NOP
  36. LLIBS_R  =  /NOD:SLIBCE SLIBCEW
  37. LLIBS_G  = LIBW.LIB
  38. MAPFILE_R  = chess.map
  39.  
  40. ASM  = masm
  41. AFLAGS_G  = /Mx /T
  42.  
  43. RC  = rc
  44. IMPLIB  = implib
  45.  
  46. DEF_FILE  = CHESS.DEF
  47. OBJS  = CHESS.obj INIT.obj BOARD.obj ABOUT.obj PIECE.obj \
  48.         HITTEST.obj COLOR.obj TIMECNT.obj SEARCH.obj INITIALI.obj \
  49.         EVAL.obj GLOBALS.obj DSP.obj MSWDSP.obj BOOK.obj CREATE.obj \
  50.         SAVEOPEN.obj NUMDLG.obj INITMENU.obj REVIEW.obj STATS.obj \
  51.         TEST.obj PROMOTE.obj MANUAL.obj
  52.  
  53. RT_OBJS = VERSION.obj
  54.  
  55. RESS = chess.res
  56.  
  57. BMPS = king.bmp kingm.bmp kingo.bmp pawn.bmp pawno.bmp pawnm.bmp \
  58.        rook.bmp rooko.bmp rookm.bmp knight.bmp knightm.bmp knighto.bmp \
  59.        bishop.bmp bishopm.bmp bishopo.bmp queen.bmp queenm.bmp queeno.bmp
  60.  
  61. HELPFILES = chess.rtf article.rtf article2.rtf copying.rtf move-gen.rtf heuristi.rtf match.rtf
  62. HELPSOURCE = chess.doc article.doc article2.doc copying.doc move-gen.doc heuristi.doc match.doc
  63.  
  64. all: $(PROJ).exe $(PROJ).hlp
  65.  
  66. .SILIENT:
  67.  
  68. .SUFFIXES: .rc .res .c .obj .doc .rtf
  69.  
  70. CHESS.RES : chess.rc $(BMPS) color.dlg chess.ico timecnt.dlg saveopen.dlg \
  71.             getnum.dlg review.dlg about.dlg stats.dlg test.dlg promote.dlg \
  72.             manual.dlg
  73.  
  74. # The following routines contain window functions or Call backs and is
  75. # compiled with the Gw switch
  76.  
  77. ABOUT.obj : ABOUT.C
  78.         $(CC) /c $(CFLAGS) /Gw $*.c
  79.  
  80. CHESS.obj : CHESS.C gnuchess.h defs.h chess.h saveopen.h  color.h 
  81.         $(CC) /c $(CFLAGS) /Gw /EM $*.c
  82.  
  83. COLOR.obj : COLOR.C chess.h color.h
  84.         $(CC) /c $(CFLAGS) /Gw $*.c
  85.  
  86. MANUAL.obj : MANUAL.C chess.h
  87.         $(CC) /c $(CFLAGS) /Gw $*.c
  88.  
  89. NUMDLG.obj : NUMDLG.C chess.h
  90.         $(CC) /c $(CFLAGS) /Gw $*.c
  91.  
  92. PROMOTE.obj : PROMOTE.C chess.h
  93.         $(CC) /c $(CFLAGS) /Gw $*.c
  94.  
  95. REVIEW.obj : REVIEW.C gnuchess.h chess.h defs.h
  96.         $(CC) /c $(CFLAGS) /Gw $*.c
  97.  
  98. SAVEOPEN.obj : SAVEOPEN.C saveopen.h
  99.         $(CC) /c $(CFLAGS) /Gw $*.c
  100.  
  101. STATS.obj : STATS.C gnuchess.h stats.h
  102.         $(CC) /c $(CFLAGS) /Gw $*.c
  103.  
  104. TEST.obj : TEST.C gnuchess.h chess.h defs.h
  105.         $(CC) /c $(CFLAGS) /Od /Gw $*.c
  106.  
  107. TIMECNT.obj : TIMECNT.C timecnt.h chess.h
  108.         $(CC) /c $(CFLAGS) /Gw $*.c
  109.  
  110. # The following are compiled with the GW switch
  111.  
  112. BOARD.obj : BOARD.C defs.h
  113.         $(CC) /c $(CFLAGS) /GW $*.c
  114.  
  115. BOOK.obj : BOOK.C gnuchess.h defs.h chess.h
  116.         $(CC) /c $(CFLAGS) /GW $*.c
  117.  
  118. CREATE.obj : CREATE.C defs.h chess.h
  119.         $(CC) /c $(CFLAGS) /GW $*.c
  120.  
  121. DSP.obj : DSP.C gnuchess.h defs.h chess.h
  122.         $(CC) /c $(CFLAGS) /GW $*.c
  123.  
  124. EVAL.obj : EVAL.C gnuchess.h defs.h
  125.         $(CC) /c $(CFLAGS) /EM /GW $*.c
  126.  
  127. GLOBALS.obj : GLOBALS.C gnuchess.h
  128.         $(CC) /c $(CFLAGS) /GW $*.c
  129.  
  130. HITTEST.obj : HITTEST.C defs.h
  131.         $(CC) /c $(CFLAGS) /GW $*.c
  132.  
  133. INIT.obj : INIT.C
  134.         $(CC) /c $(CFLAGS) /GW $*.c
  135.  
  136. INITIALI.obj : INITIALI.C gnuchess.h defs.h
  137.         $(CC) /c $(CFLAGS) /EM /GW $*.c
  138.  
  139. INITMENU.obj : INITMENU.C gnuchess.h chess.h
  140.         $(CC) /c $(CFLAGS) /GW $*.c
  141.  
  142. MSWDSP.obj : MSWDSP.C gnuchess.h chess.h defs.h stats.h
  143.         $(CC) /c $(CFLAGS) /GW $*.c
  144.  
  145. PIECE.obj : PIECE.C chess.h defs.h
  146.         $(CC) /c $(CFLAGS) /GW $*.c
  147.  
  148. SEARCH.obj : SEARCH.C gnuchess.h defs.h
  149.         $(CC) /c $(CFLAGS) /EM /GW $*.c
  150.  
  151. #
  152. # Code to generate new time stamp when any module updated
  153. #
  154. makever.exe: makever.c
  155.         cl /nologo makever.c
  156.  
  157. VERSION.obj: VERSION.c
  158.         $(CC) /c $(CFLAGS) /GW $*.c
  159.  
  160. VERSION.c:  $(OBJS) $(RESS) $(BMPS) makever.exe
  161.         makever >version.c
  162.  
  163. # Create the help file
  164.  
  165. chess.hlp: chess.hpj $(HELPFILES)
  166.         -del chess.ph
  167.         hc chess.hpj
  168.  
  169. chexe$(VER).zip:
  170. distexe: chess.exe readme.txt gnuchess.boo chess.hlp copying
  171.         -del chexe$(VER).zip
  172.         pkzip -a chexe$(VER) readme.txt chess.exe gnuchess.boo chess.hlp copying
  173.  
  174. distsrc: chess.exe chexe$(VER).zip readme.txt chess.mak chess.hlp
  175.         -del chess$(VER).zip
  176.         pkzip -a chess$(VER) @files.lst
  177.  
  178. #        pkzip -a chess$(VER) readme.txt $(PROJ).exe *.boo $(PROJ).hlp files.lst
  179. #        pkzip -a chess$(VER) $(PROJ).def $(PROJ).rc *.dlg $(PROJ).mak $(PROJ).ico 
  180. #        pkzip -a chess$(VER) copying winport change.log todo *.h *.c *.bmp 
  181. #        pkzip -a chess$(VER) chess.hpj $(HELPFILES)
  182. #        pkzip -a chess$(VER) $(HELPSOURCE)
  183.  
  184. disttar: chess.exe chexe$(VER).zip readme.txt chess.mak chess.hlp
  185.         -del ch$(VER)t.*
  186.         -del chess.ta?
  187.         tar -cf chess.tar -u bmp -u doc -u rtf -u hlp -u exe -T files.lst
  188.         c:\ucs\compress chess.tar
  189.         ren chess.taz ch$(VER)t.Z
  190.  
  191. distmail: chess.exe chexe$(VER).zip readme.txt chess.mak chess.hlp
  192.         -del ch$(VER)t.*
  193.         -del chess.ta?
  194.         tar -cf chess.tar -u bmp -u doc -u rtf -u hlp -u exe -T files.lst
  195.         c:\ucs\compress chess.tar
  196.         ren chess.taz ch$(VER)t.Z
  197.         uuxfer20 -s61000 -m -o -ech$(VER)t.Z 
  198.  
  199. clean:
  200.         -del *.obj
  201.         -del *.bak
  202.         -del *.res
  203.         -del *.err
  204.         -del *.ph
  205.  
  206. $(PROJ).exe : $(DEF_FILE) $(OBJS) $(RT_OBJS) $(RESS)
  207.         $(LRF) @<<$(PROJ).lrf
  208. $(LFLAGS) $(RT_OBJS: = +^
  209. ) $(OBJS: = +^
  210. )
  211. $@
  212. $(MAPFILE_R)
  213. $(LLIBS_G: = +^
  214. ) +
  215. $(LLIBS_R: = +^
  216. ) +
  217. $(LIBS: = +^
  218. )
  219. $(DEF_FILE) ; 
  220. <<
  221.         $(LINKER) @$(PROJ).lrf
  222.         $(RC) $(RESS) $@
  223.  
  224. .c.obj :
  225.         $(CC) /c $(CFLAGS) /Gw $<
  226.  
  227. .rc.res :
  228.         $(RC) /r $<
  229.  
  230. #
  231. # this rule is here to trap changes to the doc files.  Ideally it
  232. # would call a program todo RTF conversion.
  233. #
  234. .doc.rtf :
  235.         @echo $< is out of date. Resave as RTF.
  236.         @zzz### dummy command line need abort command
  237.